{% extends 'accounts/main.html' %} {% block content %} {% include 'accounts/status.html' %}
CUSTOMERS

Create Customer {% for customer in customers %} {% endfor %}
Customer Phone
{{ customer.name }} {{ customer.phone }} View
LAST 5 ORDERS

{% for order in last_five_orders %} {% endfor %} All Orders
Product Date Orderd Status Update Remove
{{ order.product }} {{ order.date_created }} {{ order.status }} Update Remove
{% endblock %}